home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / C / LIB / DESK / CORE / Desk / h / Screen < prev    next >
Text File  |  1996-05-21  |  1KB  |  35 lines

  1.  
  2. #ifndef __Desk_Screen_h
  3. #define __Desk_Screen_h
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. #ifndef __Desk_Wimp_h
  8. #include "Desk.Wimp.h"
  9. #endif
  10. #ifdef Desk__using_SDLS
  11. extern int *Desk_Screen__Ref_mode(void);
  12. extern Desk_wimp_point *Desk_Screen__Ref_size(void);
  13. extern Desk_wimp_point *Desk_Screen__Ref_eig(void);
  14. extern Desk_wimp_point *Desk_Screen__Ref_delta(void);
  15. extern int *Desk_Screen__Ref_bpp(void);
  16. #endif
  17. #if defined(Desk__using_SDLS) && !defined(Desk__making_Misc)
  18. #define Desk_screen_mode (*Desk_Screen__Ref_mode())
  19. #define Desk_screen_size (*Desk_Screen__Ref_size())
  20. #define Desk_screen_eig (*Desk_Screen__Ref_eig())
  21. #define Desk_screen_delta (*Desk_Screen__Ref_delta())
  22. #define Desk_screen_bpp (*Desk_Screen__Ref_bpp())
  23. #else
  24. extern int Desk_screen_mode;
  25. extern Desk_wimp_point Desk_screen_size;
  26. extern Desk_wimp_point Desk_screen_eig; 
  27. extern Desk_wimp_point Desk_screen_delta; 
  28. extern int Desk_screen_bpp; 
  29. #endif
  30. extern Desk_bool Desk_Screen_CacheModeInfo(void);
  31. #ifdef __cplusplus
  32. }
  33. #endif
  34. #endif
  35.